home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------------------*/
- /* */
- /* hctInit - This REXX Macro is called when the report is first called */
- /* This is where you can set up your Header and such */
- /* */
- /* Valid Variables are: */
- /* hcReportName hcReportDescription hcServerURL */
- /* hcServerRoot hcDocumentRoot hcTopHTML */
- /* */
- /* */
- /*---------------------------------------------------------------------------*/
-
- Call RxhcLineOut 'Report -' hcReportDescription
- Call RxhcLineOut COPIES(' ', 60) || Date() || ' ' || Time()
- Call RxhcLineOut COPIES('-', 78)
- Call RxhcLineOut 'hcReportName=' hcReportName
- Call RxhcLineOut 'hcReportDescription=' hcReportDescription
- Call RxhcLineOut 'hcServerURL=' hcServerURL
- Call RxhcLineOut 'hcServerRoot=' hcServerRoot
- Call RxhcLineOut 'hcDocumentRoot=' hcDocumentRoot
- Call RxhcLineOut 'hcTopHTML=' hcTopHTML
-
- Call RxhcLineOut COPIES('-', 78)
-
- RETURN